home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Mac OS X Patching Docs / HiHack / main.c < prev   
Encoding:
C/C++ Source or Header  |  2001-06-23  |  217 b   |  17 lines

  1. /* 
  2.     main.c
  3.     in HiHack.framework
  4.     
  5.     the freshmaker - a patch for a function in Hi.framework
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. void Helloworld();
  11.  
  12. void helloWorld()
  13. {
  14.     Helloworld();
  15.     printf("... I'm... Very scared today!\n");
  16. }
  17.